Merged
Conversation
Contributor
Author
|
Okay, I guess we're ready for reviews from @encode/maintainers. I'll plan to sit on this one for the rest of today, and then release start-of-working-day tomorrow. |
Contributor
|
@tomchristie I'll update this PR with my small multipart fixes. :-) |
florimondmanca
approved these changes
May 21, 2020
Contributor
florimondmanca
left a comment
There was a problem hiding this comment.
So glad to see this happen! Congrats all ❤️
Contributor
Author
|
Now up on PyPI. 👍 |
Contributor
|
Woohooo!! 🎉 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Preliminary CHANGELOG and
__version__update for 0.13.Still required...
URLLib3Transportpooling options)URLLib3Transportinterface, since it's becoming public API. #966. (Use seperatedURLLib3TransportandURLLib3ProxyTransportclasses as the public API)Up for reviews onto this in the meantime tho...
0.13.0 (May 22nd, 2020)
This release switches to
httpcorefor all the internal networking, which means:urllib3dependency for our sync client, although there is still an optionalURLLib3Transportclass.It also means we've had to remove our UDS support, since maintaining that would have meant having to push back our work towards a 1.0 release, which isn't a trade-off we wanted to make.
We also now have a public "Transport API", which you can use to implement custom transport implementations against. This formalises and replaces our previously private "Dispatch API".
Changed
httpcorefor underlying HTTP transport. Dropurllib3requirement. (Pull Httpcore interface #804, Updates for httpcore 0.9 interface. #967)soft_limit/hard_limittomax_keepalive/max_connections. (Pull Rename pool limit options #968)transport=.... TheASGIDispatchandWSGIDispatchclass naming is deprecated in favour ofASGITransportandWSGITransport. (Pull Transport API #963)Added
URLLib3Transportclass for optionalurllib3transport support. (Pull Httpcore interface #804, Transport API #963)and TRACE level logging. (Pull Add logger trace httpcore#79)
Fixed
Response.streamandResponse.raw. (Pull Proper warning level of deprecation notice #908)files=.... (Pull Improve typing support for thefilesparameter #976)Removed
Client(uds=...)(Pull Httpcore interface #804)